Package io.realm.kotlin.types

Types

BaseRealmObject
Link copied to clipboard
interface BaseRealmObject : Deleteable
Base interface for all realm classes.
EmbeddedRealmObject
Link copied to clipboard
interface EmbeddedRealmObject : BaseRealmObject
Marker interface to define an embedded model.
MutableRealmInt
Link copied to clipboard
abstract class MutableRealmInt : Number, Comparable<MutableRealmInt>
A MutableRealmInt is a mutable, Long-like, numeric quantity.
ObjectId
Link copied to clipboard
interface ObjectId : Comparable<ObjectId>
A globally unique identifier for objects.
RealmInstant
Link copied to clipboard
interface RealmInstant : Comparable<RealmInstant>
A representation of a Realm timestamp.
RealmList
Link copied to clipboard
interface RealmList<E> : MutableList<E> , Deleteable
RealmList is used to model one-to-many relationships in a RealmObject or EmbeddedRealmObject.
RealmObject
Link copied to clipboard
interface RealmObject : BaseRealmObject
Marker interface to define a model (managed by Realm).
RealmSet
Link copied to clipboard
interface RealmSet<E> : MutableSet<E> , Deleteable
RealmSet is a collection that contains no duplicate elements.
RealmUUID
Link copied to clipboard
interface RealmUUID
A class that represents an immutable universally unique identifier (UUID).